home *** CD-ROM | disk | FTP | other *** search
/ Champak 114 / Vol 114.iso / games / spongebo.swf / scripts / frame_2 / DoAction.as
Encoding:
Text File  |  2010-08-12  |  223 b   |  13 lines

  1. loaded = Math.round(_root.getBytesLoaded());
  2. total = Math.round(_root.getBytesTotal());
  3. percent = loaded / total * 100;
  4. if(loaded == total)
  5. {
  6.    gotoAndStop("loadDone");
  7.    play();
  8. }
  9. else
  10. {
  11.    gotoAndPlay(1);
  12. }
  13.